home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue50 / IPC / Anonymous Pipes / Delphi / ChildAnonymousPipe.dpr next >
Encoding:
Text File  |  1997-02-13  |  222 b   |  14 lines

  1. program ChildAnonymousPipe;
  2.  
  3. uses
  4.   Forms,
  5.   ChildMainFormUnit in 'ChildMainFormUnit.pas' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.